home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Epic Collection 3
/
Epic Collection 3, The (1997)(Epic Marketing)[!].iso
/
internet
/
misc
/
ax
/
install_ax
< prev
next >
Wrap
Text File
|
1996-09-08
|
804b
|
60 lines
; Install-Script for Ax 0.1ß
(complete 0)
(set @default-dest
(askdir
(prompt "In which directory would you like Ax installed?")
(help @askdir-help)
(default @default-dest)
)
)
(set maindir @default-dest)
(copyfiles
(help @copyfiles-help)
(source "Ax")
(dest maindir)
(infos)
)
(complete 40)
(copyfiles
(help @copyfiles-help)
(source "Ax.guide")
(dest maindir)
(infos)
(optional "nofail")
)
(complete 60)
(copylib
(prompt "Yeah, whatever.")
(help @copylib-help)
(source "Libs")
(dest "LIBS:")
; (optional "nofail" "force")
(confirm)
)
(complete 80)
; .guide file uses AmigaGuide instead of MultiView for OS <= V38
(set ver (/ (getversion) 65536))
(if (> ver 38)
(tooltype
(dest (tackon maindir "Ax.guide"))
(setdefaulttool "MultiView")
)
)
(complete 100)
(exit)